home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 6 / QRZ Ham Radio Callsign Database - Volume 6.iso / mac / files / amiga / akit29m.lha / PPP.notes
Text File  |  1993-02-09  |  3KB  |  65 lines

  1. ###ppp trace 2
  2. attach asy serial.device 0 ppp pp0 8092 576 38400c
  3. #
  4. # PPP has many parameter options, they are described briefly below;
  5. # refer to the README files for more information on these options
  6. #
  7. #   tracing options:
  8. #   there are two trace methods for a PPP interface. they can operate
  9. #   separately or in combination. the first method uses a combination
  10. #   of the 'log' and 'ppp trace' commands (see the example just above
  11. #   the attach command). it traces the transitions of the PPP state
  12. #   machine through its various link states and layers. the second method
  13. #   (as shown below) traces the contents of packets sent and received
  14. #   on a PPP interface. sometimes disk delays while tracing can cause
  15. #   packet timeout and retransmission; in this case, use the 'ppp timeout'
  16. #   command to lengthen the timeout interval.
  17. ###trace pp0 1211 ppp.log
  18. #trace pp0 211 ppp.log
  19. #
  20. #   PPP Link Control Protocol options:
  21. #   use the 'ppp ctlmap' command to flag bytes which cant be passed
  22. #   across the data link. if the data link is 8-bit transparent, use
  23. #   a ctlmap of all zeros. if, for example, XON/XOFF are intercepted
  24. #   as flow control by a device in the data link, use a ctlmap value
  25. #   of 0x00050000; the XON and XOFF bytes will be 'escaped' before
  26. #   transmission (and 'un-escaped' by the remote PPP decoder), but all
  27. #   other ASCII control chars will be sent 'in the clear'.
  28. ppp mru      pp0 256
  29. #ppp ctlmap   pp0 0xffffffff
  30. ppp ctlmap   pp0 0x00000000
  31. ppp accomp   pp0 1
  32. ppp protcomp pp0 1
  33. #
  34. #   PPP Peer Authentication Protocol options:
  35. #   the PAP phase is not required, but is recommended in dial-up situations.
  36. #   the side of the link that wants to restrict access should uncomment
  37. #   the 'ppp auth' command. the other side will prompt for a peerid and
  38. #   password; the peerid and password can be preset with a combination of
  39. #   the 'ppp peerid' command and a corresponding entry in the \FTPUSERS file.
  40. #ppp auth     pp0 PAP
  41. #ppp peerid   pp0 cckatie
  42. #
  43. #   PPP IP Control Protocol options:
  44. #   each side of a PPP link may know one, both or neither of their respective
  45. #   IP addresses, but both addresses must be collectively known and agreed
  46. #   upon. please refer to the README files for more on IP address negotiation.
  47. ppp ipcomp   pp0 vjold
  48. #ppp peer    pp0 [128.120.4.104]
  49. #
  50. #   PPP activation command:
  51. #   a PPP interface can be passive or active. a passive PPP interface will
  52. #   wait (forever) for the remote peer to initiate LCP negotiations. a PPP
  53. #   interface is passive by default; use the 'ppp active' command to switch
  54. #   an interface from passive to active. at least one side of the PPP link
  55. #   must be an active interface; it is permissible for both sides to be
  56. #   active; if both sides are passive, nothing will happen because neither
  57. #   side will attempt to start LCP negotiations to open the PPP link.
  58. #   please refer to the README files for more on active/passive status.
  59. ppp active   pp0
  60. #ppp passive   pp0
  61. #
  62. route add default pp0
  63. #
  64. #
  65.